home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-2001 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Tag
- @Method: getTagName() - returns the name of this
- tag defined as the characters up to the first
- space or to end of the tag.
- @Syntax: tag.getTagName()
- @Summary: getTagName - returns the parent tag
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("tag.getTagName()", selection);
- editor.setActive("tag.getTagName");
- }
- }
-
- !!/Script
-